home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_q_t / trem.zip / ASCII.H < prev    next >
Text File  |  1991-05-11  |  2KB  |  67 lines

  1. /************************************************************************
  2.  *
  3.  *    Copyright (c) 1991 Microsoft Corporation.  All Rights Reserved.
  4.  *
  5.  *-----------------------------------------------------------------------
  6.  *
  7.  *     Project:  Windows Terminal Example
  8.  *
  9.  *      Module:  ascii.h
  10.  *
  11.  *      Author:  Bryan A. Woodruff (baw)
  12.  *
  13.  *
  14.  *     Remarks:  This is the definition file for ASCII characters.
  15.  *
  16.  *   Revisions:  
  17.  *     01.00.000  5/10/91 baw   Wrote it
  18.  *
  19.  ************************************************************************/
  20.  
  21. #define ASCII_NUL     0x00
  22. #define ASCII_SOH     0x01
  23. #define ASCII_STX     0x02
  24. #define ASCII_ETX     0x03
  25. #define ASCII_EOT     0x04
  26. #define ASCII_ENQ     0x05
  27. #define ASCII_ACK     0x06
  28. #define ASCII_BEL     0x07
  29. #define ASCII_BS      0x08
  30. #define ASCII_HT      0x09
  31. #define ASCII_LF      0x0A
  32. #define ASCII_VT      0x0B
  33. #define ASCII_FF      0x0C
  34. #define ASCII_CR      0x0D
  35. #define ASCII_SO      0x0E
  36. #define ASCII_SI      0x0F
  37. #define ASCII_DLE     0x10
  38. #define ASCII_DC1     0x11
  39. #define ASCII_XON     0x11
  40. #define ASCII_DC2     0x12
  41. #define ASCII_TON     0x12
  42. #define ASCII_DC3     0x13
  43. #define ASCII_XOFF    0x13
  44. #define ASCII_DC4     0x14
  45. #define ASCII_TOFF    0x14
  46. #define ASCII_NAK     0x15
  47. #define ASCII_SYN     0x16
  48. #define ASCII_ETB     0x17
  49. #define ASCII_CAN     0x18
  50. #define ASCII_EM      0x19
  51. #define ASCII_SUB     0x1A
  52. #define ASCII_ESC     0x1B
  53. #define ASCII_FS      0x1C
  54. #define ASCII_GS      0x1D
  55. #define ASCII_RS      0x1E
  56. #define ASCII_US      0x1F
  57. #define ASCII_MINUS   0x2D
  58. #define ASCII_EQUAL   0x3D
  59. #define ASCII_DEL     0x7F
  60. #define ASCII_SS3     0x8F
  61. #define ASCII_CSI     0x9B
  62.  
  63. /************************************************************************
  64.  * End of File: ascii.h
  65.  ************************************************************************/
  66.  
  67.